-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Control Log json communications with vscode-client tooling #7
base: master
Are you sure you want to change the base?
Conversation
There's a simplest version for the property editable on settings tab which is:
But I put the full featured one (which allows to decide on format (text or json) for output. Is a little worse because you have to edit directly on |
Good commit, but you should bump the version number up to 1.0.3 for this |
I tried this out but it doesn't seem to affect anything. Could you explain how this feature is used and what should change in the output of the extension? |
I think you need to remove installed plugin to see it work. Will change the version in a while To use you press Ctrl+, and change the setting for So you can enable for a while, and disable in same session. Attached screencast (NOTE: gitlab render webm by default)Uploading vls-json-log.zip… This allows to remove G_MESSAGE_DEBUG or add a new |
@albfan There's no attachment. You can use something like https://streamable.com if you want to upload screencasts |
} | ||
}, | ||
transport: TransportKind.stdio | ||
} | ||
}; | ||
|
||
this.ls = new LanguageClient('Vala Language Server', serverOptions, clientOptions) | ||
this.ls = new LanguageClient('vala', 'Vala Language Server', serverOptions, clientOptions) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if you're changing the prefix can you change vls.languageServerPath
to vala.languageServerPath
Allow to control wheter or not you want to see the json messages between client and server
NOTE: I set the client id as vala (
vala.trace.server
), but there're other settings using vls as id (vls.execPath
).fixes #6